home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / nasm095.zip / RDOFF / SYMTAB.H < prev   
Text File  |  1997-07-27  |  594b  |  23 lines

  1. /* symtab.h    Header file for symbol table manipulation routines
  2.  *
  3.  * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
  4.  * Julian Hall. All rights reserved. The software is
  5.  * redistributable under the licence given in the file "Licence"
  6.  * distributed in the NASM archive.
  7.  */
  8.  
  9. typedef struct {
  10.   char     *name;
  11.   long    segment;
  12.   long    offset;
  13.   long    flags;
  14. } symtabEnt;
  15.  
  16. void *symtabNew(void);
  17. void symtabDone(void *symtab);
  18. void symtabInsert(void *symtab,symtabEnt *ent);
  19. symtabEnt *symtabFind(void *symtab,char *name);
  20. void symtabDump(void *symtab,FILE *of);
  21.  
  22.  
  23.